home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 September / PCWorld_2007-09_cd.bin / system / ntfs / ntfsundelete.exe / {app} / locale.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2006-10-29  |  20KB  |  756 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """ Locale support.
  5.  
  6.     The module provides low-level access to the C lib's locale APIs
  7.     and adds high level number formatting APIs as well as a locale
  8.     aliasing engine to complement these.
  9.  
  10.     The aliasing engine includes support for many commonly used locale
  11.     names and maps them to values suitable for passing to the C lib's
  12.     setlocale() function. It also includes default encodings for all
  13.     supported locale names.
  14.  
  15. """
  16. import sys
  17. __all__ = [
  18.     'setlocale',
  19.     'Error',
  20.     'localeconv',
  21.     'strcoll',
  22.     'strxfrm',
  23.     'format',
  24.     'str',
  25.     'atof',
  26.     'atoi',
  27.     'LC_CTYPE',
  28.     'LC_COLLATE',
  29.     'LC_TIME',
  30.     'LC_MONETARY',
  31.     'LC_NUMERIC',
  32.     'LC_ALL',
  33.     'CHAR_MAX']
  34.  
  35. try:
  36.     from _locale import *
  37. except ImportError:
  38.     CHAR_MAX = 127
  39.     LC_ALL = 6
  40.     LC_COLLATE = 3
  41.     LC_CTYPE = 0
  42.     LC_MESSAGES = 5
  43.     LC_MONETARY = 4
  44.     LC_NUMERIC = 1
  45.     LC_TIME = 2
  46.     Error = ValueError
  47.     
  48.     def localeconv():
  49.         ''' localeconv() -> dict.
  50.             Returns numeric and monetary locale-specific parameters.
  51.         '''
  52.         return {
  53.             'grouping': [
  54.                 127],
  55.             'currency_symbol': '',
  56.             'n_sign_posn': 127,
  57.             'p_cs_precedes': 127,
  58.             'n_cs_precedes': 127,
  59.             'mon_grouping': [],
  60.             'n_sep_by_space': 127,
  61.             'decimal_point': '.',
  62.             'negative_sign': '',
  63.             'positive_sign': '',
  64.             'p_sep_by_space': 127,
  65.             'int_curr_symbol': '',
  66.             'p_sign_posn': 127,
  67.             'thousands_sep': '',
  68.             'mon_thousands_sep': '',
  69.             'frac_digits': 127,
  70.             'mon_decimal_point': '',
  71.             'int_frac_digits': 127 }
  72.  
  73.     
  74.     def setlocale(category, value = None):
  75.         ''' setlocale(integer,string=None) -> string.
  76.             Activates/queries locale processing.
  77.         '''
  78.         if value not in (None, '', 'C'):
  79.             raise Error, '_locale emulation only supports "C" locale'
  80.         
  81.         return 'C'
  82.  
  83.     
  84.     def strcoll(a, b):
  85.         ''' strcoll(string,string) -> int.
  86.             Compares two strings according to the locale.
  87.         '''
  88.         return cmp(a, b)
  89.  
  90.     
  91.     def strxfrm(s):
  92.         ''' strxfrm(string) -> string.
  93.             Returns a string that behaves for cmp locale-aware.
  94.         '''
  95.         return s
  96.  
  97.  
  98.  
  99. def _group(s):
  100.     conv = localeconv()
  101.     grouping = conv['grouping']
  102.     if not grouping:
  103.         return (s, 0)
  104.     
  105.     result = ''
  106.     seps = 0
  107.     spaces = ''
  108.     if s[-1] == ' ':
  109.         sp = s.find(' ')
  110.         spaces = s[sp:]
  111.         s = s[:sp]
  112.     
  113.     while s and grouping:
  114.         if grouping[0] == CHAR_MAX:
  115.             break
  116.         elif grouping[0] != 0:
  117.             group = grouping[0]
  118.             grouping = grouping[1:]
  119.         
  120.         if result:
  121.             result = s[-group:] + conv['thousands_sep'] + result
  122.             seps += 1
  123.         else:
  124.             result = s[-group:]
  125.         s = s[:-group]
  126.         if s and s[-1] not in '0123456789':
  127.             return (s + result + spaces, seps)
  128.             continue
  129.     if not result:
  130.         return (s + spaces, seps)
  131.     
  132.     if s:
  133.         result = s + conv['thousands_sep'] + result
  134.         seps += 1
  135.     
  136.     return (result + spaces, seps)
  137.  
  138.  
  139. def format(f, val, grouping = 0):
  140.     '''Formats a value in the same way that the % formatting would use,
  141.     but takes the current locale into account.
  142.     Grouping is applied if the third parameter is true.'''
  143.     result = f % val
  144.     fields = result.split('.')
  145.     seps = 0
  146.     if grouping:
  147.         (fields[0], seps) = _group(fields[0])
  148.     
  149.     if len(fields) == 2:
  150.         result = fields[0] + localeconv()['decimal_point'] + fields[1]
  151.     elif len(fields) == 1:
  152.         result = fields[0]
  153.     else:
  154.         raise Error, 'Too many decimal points in result string'
  155.     while seps:
  156.         sp = result.find(' ')
  157.         if sp == -1:
  158.             break
  159.         
  160.         result = result[:sp] + result[sp + 1:]
  161.         seps -= 1
  162.     return result
  163.  
  164.  
  165. def str(val):
  166.     '''Convert float to integer, taking the locale into account.'''
  167.     return format('%.12g', val)
  168.  
  169.  
  170. def atof(string, func = float):
  171.     '''Parses a string as a float according to the locale settings.'''
  172.     ts = localeconv()['thousands_sep']
  173.     if ts:
  174.         string = string.replace(ts, '')
  175.     
  176.     dd = localeconv()['decimal_point']
  177.     if dd:
  178.         string = string.replace(dd, '.')
  179.     
  180.     return func(string)
  181.  
  182.  
  183. def atoi(str):
  184.     '''Converts a string to an integer according to the locale settings.'''
  185.     return atof(str, int)
  186.  
  187.  
  188. def _test():
  189.     setlocale(LC_ALL, '')
  190.     s1 = format('%d', 123456789, 1)
  191.     print s1, 'is', atoi(s1)
  192.     s1 = str(3.1400000000000001)
  193.     print s1, 'is', atof(s1)
  194.  
  195. _setlocale = setlocale
  196.  
  197. def normalize(localename):
  198.     ''' Returns a normalized locale code for the given locale
  199.         name.
  200.  
  201.         The returned locale code is formatted for use with
  202.         setlocale().
  203.  
  204.         If normalization fails, the original name is returned
  205.         unchanged.
  206.  
  207.         If the given encoding is not known, the function defaults to
  208.         the default encoding for the locale code just like setlocale()
  209.         does.
  210.  
  211.     '''
  212.     fullname = localename.lower()
  213.     if ':' in fullname:
  214.         fullname = fullname.replace(':', '.')
  215.     
  216.     if '.' in fullname:
  217.         (langname, encoding) = fullname.split('.')[:2]
  218.         fullname = langname + '.' + encoding
  219.     else:
  220.         langname = fullname
  221.         encoding = ''
  222.     code = locale_alias.get(fullname, None)
  223.     if code is not None:
  224.         return code
  225.     
  226.     code = locale_alias.get(langname, None)
  227.     if code is not None:
  228.         if '.' in code:
  229.             (langname, defenc) = code.split('.')
  230.         else:
  231.             langname = code
  232.             defenc = ''
  233.         if encoding:
  234.             encoding = encoding_alias.get(encoding, encoding)
  235.         else:
  236.             encoding = defenc
  237.         if encoding:
  238.             return langname + '.' + encoding
  239.         else:
  240.             return langname
  241.     else:
  242.         return localename
  243.  
  244.  
  245. def _parse_localename(localename):
  246.     ''' Parses the locale code for localename and returns the
  247.         result as tuple (language code, encoding).
  248.  
  249.         The localename is normalized and passed through the locale
  250.         alias engine. A ValueError is raised in case the locale name
  251.         cannot be parsed.
  252.  
  253.         The language code corresponds to RFC 1766.  code and encoding
  254.         can be None in case the values cannot be determined or are
  255.         unknown to this implementation.
  256.  
  257.     '''
  258.     code = normalize(localename)
  259.     if '@' in localename:
  260.         (code, modifier) = code.split('@')
  261.         if modifier == 'euro' and '.' not in code:
  262.             return (code, 'iso-8859-15')
  263.         
  264.     
  265.     if '.' in code:
  266.         return code.split('.')[:2]
  267.     elif code == 'C':
  268.         return (None, None)
  269.     
  270.     raise ValueError, 'unknown locale: %s' % localename
  271.  
  272.  
  273. def _build_localename(localetuple):
  274.     ''' Builds a locale code from the given tuple (language code,
  275.         encoding).
  276.  
  277.         No aliasing or normalizing takes place.
  278.  
  279.     '''
  280.     (language, encoding) = localetuple
  281.     if language is None:
  282.         language = 'C'
  283.     
  284.     if encoding is None:
  285.         return language
  286.     else:
  287.         return language + '.' + encoding
  288.  
  289.  
  290. def getdefaultlocale(envvars = ('LANGUAGE', 'LC_ALL', 'LC_CTYPE', 'LANG')):
  291.     ''' Tries to determine the default locale settings and returns
  292.         them as tuple (language code, encoding).
  293.  
  294.         According to POSIX, a program which has not called
  295.         setlocale(LC_ALL, "") runs using the portable \'C\' locale.
  296.         Calling setlocale(LC_ALL, "") lets it use the default locale as
  297.         defined by the LANG variable. Since we don\'t want to interfere
  298.         with the current locale setting we thus emulate the behavior
  299.         in the way described above.
  300.  
  301.         To maintain compatibility with other platforms, not only the
  302.         LANG variable is tested, but a list of variables given as
  303.         envvars parameter. The first found to be defined will be
  304.         used. envvars defaults to the search path used in GNU gettext;
  305.         it must always contain the variable name \'LANG\'.
  306.  
  307.         Except for the code \'C\', the language code corresponds to RFC
  308.         1766.  code and encoding can be None in case the values cannot
  309.         be determined.
  310.  
  311.     '''
  312.     
  313.     try:
  314.         import _locale as _locale
  315.         (code, encoding) = _locale._getdefaultlocale()
  316.     except (ImportError, AttributeError):
  317.         pass
  318.  
  319.     if sys.platform == 'win32' and code and code[:2] == '0x':
  320.         code = windows_locale.get(int(code, 0))
  321.     
  322.     return (code, encoding)
  323.     import os as os
  324.     lookup = os.environ.get
  325.     for variable in envvars:
  326.         localename = lookup(variable, None)
  327.         if localename:
  328.             break
  329.             continue
  330.     else:
  331.         localename = 'C'
  332.     return _parse_localename(localename)
  333.  
  334.  
  335. def getlocale(category = LC_CTYPE):
  336.     """ Returns the current setting for the given locale category as
  337.         tuple (language code, encoding).
  338.  
  339.         category may be one of the LC_* value except LC_ALL. It
  340.         defaults to LC_CTYPE.
  341.  
  342.         Except for the code 'C', the language code corresponds to RFC
  343.         1766.  code and encoding can be None in case the values cannot
  344.         be determined.
  345.  
  346.     """
  347.     localename = _setlocale(category)
  348.     if category == LC_ALL and ';' in localename:
  349.         raise TypeError, 'category LC_ALL is not supported'
  350.     
  351.     return _parse_localename(localename)
  352.  
  353.  
  354. def setlocale(category, locale = None):
  355.     ''' Set the locale for the given category.  The locale can be
  356.         a string, a locale tuple (language code, encoding), or None.
  357.  
  358.         Locale tuples are converted to strings the locale aliasing
  359.         engine.  Locale strings are passed directly to the C lib.
  360.  
  361.         category may be given as one of the LC_* values.
  362.  
  363.     '''
  364.     if locale and type(locale) is not type(''):
  365.         locale = normalize(_build_localename(locale))
  366.     
  367.     return _setlocale(category, locale)
  368.  
  369.  
  370. def resetlocale(category = LC_ALL):
  371.     ''' Sets the locale for category to the default setting.
  372.  
  373.         The default setting is determined by calling
  374.         getdefaultlocale(). category defaults to LC_ALL.
  375.  
  376.     '''
  377.     _setlocale(category, _build_localename(getdefaultlocale()))
  378.  
  379. if sys.platform in ('win32', 'darwin', 'mac'):
  380.     
  381.     def getpreferredencoding(do_setlocale = True):
  382.         '''Return the charset that the user is likely using.'''
  383.         import _locale
  384.         return _locale._getdefaultlocale()[1]
  385.  
  386. else:
  387.     
  388.     try:
  389.         CODESET
  390.     except NameError:
  391.         
  392.         def getpreferredencoding(do_setlocale = True):
  393.             '''Return the charset that the user is likely using,
  394.             by looking at environment variables.'''
  395.             return getdefaultlocale()[1]
  396.  
  397.  
  398.     
  399.     def getpreferredencoding(do_setlocale = True):
  400.         '''Return the charset that the user is likely using,
  401.             according to the system configuration.'''
  402.         if do_setlocale:
  403.             oldloc = setlocale(LC_CTYPE)
  404.             setlocale(LC_CTYPE, '')
  405.             result = nl_langinfo(CODESET)
  406.             setlocale(LC_CTYPE, oldloc)
  407.             return result
  408.         else:
  409.             return nl_langinfo(CODESET)
  410.  
  411. encoding_alias = {
  412.     '437': 'C',
  413.     'c': 'C',
  414.     'iso8859': 'ISO8859-1',
  415.     '8859': 'ISO8859-1',
  416.     '88591': 'ISO8859-1',
  417.     'ascii': 'ISO8859-1',
  418.     'en': 'ISO8859-1',
  419.     'iso88591': 'ISO8859-1',
  420.     'iso_8859-1': 'ISO8859-1',
  421.     '885915': 'ISO8859-15',
  422.     'iso885915': 'ISO8859-15',
  423.     'iso_8859-15': 'ISO8859-15',
  424.     'iso8859-2': 'ISO8859-2',
  425.     'iso88592': 'ISO8859-2',
  426.     'iso_8859-2': 'ISO8859-2',
  427.     'iso88595': 'ISO8859-5',
  428.     'iso88596': 'ISO8859-6',
  429.     'iso88597': 'ISO8859-7',
  430.     'iso88598': 'ISO8859-8',
  431.     'iso88599': 'ISO8859-9',
  432.     'iso-2022-jp': 'JIS7',
  433.     'jis': 'JIS7',
  434.     'jis7': 'JIS7',
  435.     'sjis': 'SJIS',
  436.     'tis620': 'TACTIS',
  437.     'ajec': 'eucJP',
  438.     'eucjp': 'eucJP',
  439.     'ujis': 'eucJP',
  440.     'utf-8': 'utf',
  441.     'utf8': 'utf',
  442.     'utf8@ucs4': 'utf' }
  443. locale_alias = {
  444.     'american': 'en_US.ISO8859-1',
  445.     'ar': 'ar_AA.ISO8859-6',
  446.     'ar_aa': 'ar_AA.ISO8859-6',
  447.     'ar_sa': 'ar_SA.ISO8859-6',
  448.     'arabic': 'ar_AA.ISO8859-6',
  449.     'bg': 'bg_BG.ISO8859-5',
  450.     'bg_bg': 'bg_BG.ISO8859-5',
  451.     'bulgarian': 'bg_BG.ISO8859-5',
  452.     'c-french': 'fr_CA.ISO8859-1',
  453.     'c': 'C',
  454.     'c_c': 'C',
  455.     'cextend': 'en_US.ISO8859-1',
  456.     'chinese-s': 'zh_CN.eucCN',
  457.     'chinese-t': 'zh_TW.eucTW',
  458.     'croatian': 'hr_HR.ISO8859-2',
  459.     'cs': 'cs_CZ.ISO8859-2',
  460.     'cs_cs': 'cs_CZ.ISO8859-2',
  461.     'cs_cz': 'cs_CZ.ISO8859-2',
  462.     'cz': 'cz_CZ.ISO8859-2',
  463.     'cz_cz': 'cz_CZ.ISO8859-2',
  464.     'czech': 'cs_CS.ISO8859-2',
  465.     'da': 'da_DK.ISO8859-1',
  466.     'da_dk': 'da_DK.ISO8859-1',
  467.     'danish': 'da_DK.ISO8859-1',
  468.     'de': 'de_DE.ISO8859-1',
  469.     'de_at': 'de_AT.ISO8859-1',
  470.     'de_ch': 'de_CH.ISO8859-1',
  471.     'de_de': 'de_DE.ISO8859-1',
  472.     'dutch': 'nl_BE.ISO8859-1',
  473.     'ee': 'ee_EE.ISO8859-4',
  474.     'el': 'el_GR.ISO8859-7',
  475.     'el_gr': 'el_GR.ISO8859-7',
  476.     'en': 'en_US.ISO8859-1',
  477.     'en_au': 'en_AU.ISO8859-1',
  478.     'en_ca': 'en_CA.ISO8859-1',
  479.     'en_gb': 'en_GB.ISO8859-1',
  480.     'en_ie': 'en_IE.ISO8859-1',
  481.     'en_nz': 'en_NZ.ISO8859-1',
  482.     'en_uk': 'en_GB.ISO8859-1',
  483.     'en_us': 'en_US.ISO8859-1',
  484.     'eng_gb': 'en_GB.ISO8859-1',
  485.     'english': 'en_EN.ISO8859-1',
  486.     'english_uk': 'en_GB.ISO8859-1',
  487.     'english_united-states': 'en_US.ISO8859-1',
  488.     'english_us': 'en_US.ISO8859-1',
  489.     'es': 'es_ES.ISO8859-1',
  490.     'es_ar': 'es_AR.ISO8859-1',
  491.     'es_bo': 'es_BO.ISO8859-1',
  492.     'es_cl': 'es_CL.ISO8859-1',
  493.     'es_co': 'es_CO.ISO8859-1',
  494.     'es_cr': 'es_CR.ISO8859-1',
  495.     'es_ec': 'es_EC.ISO8859-1',
  496.     'es_es': 'es_ES.ISO8859-1',
  497.     'es_gt': 'es_GT.ISO8859-1',
  498.     'es_mx': 'es_MX.ISO8859-1',
  499.     'es_ni': 'es_NI.ISO8859-1',
  500.     'es_pa': 'es_PA.ISO8859-1',
  501.     'es_pe': 'es_PE.ISO8859-1',
  502.     'es_py': 'es_PY.ISO8859-1',
  503.     'es_sv': 'es_SV.ISO8859-1',
  504.     'es_uy': 'es_UY.ISO8859-1',
  505.     'es_ve': 'es_VE.ISO8859-1',
  506.     'et': 'et_EE.ISO8859-4',
  507.     'et_ee': 'et_EE.ISO8859-4',
  508.     'fi': 'fi_FI.ISO8859-1',
  509.     'fi_fi': 'fi_FI.ISO8859-1',
  510.     'finnish': 'fi_FI.ISO8859-1',
  511.     'fr': 'fr_FR.ISO8859-1',
  512.     'fr_be': 'fr_BE.ISO8859-1',
  513.     'fr_ca': 'fr_CA.ISO8859-1',
  514.     'fr_ch': 'fr_CH.ISO8859-1',
  515.     'fr_fr': 'fr_FR.ISO8859-1',
  516.     'fre_fr': 'fr_FR.ISO8859-1',
  517.     'french': 'fr_FR.ISO8859-1',
  518.     'french_france': 'fr_FR.ISO8859-1',
  519.     'ger_de': 'de_DE.ISO8859-1',
  520.     'german': 'de_DE.ISO8859-1',
  521.     'german_germany': 'de_DE.ISO8859-1',
  522.     'greek': 'el_GR.ISO8859-7',
  523.     'hebrew': 'iw_IL.ISO8859-8',
  524.     'hr': 'hr_HR.ISO8859-2',
  525.     'hr_hr': 'hr_HR.ISO8859-2',
  526.     'hu': 'hu_HU.ISO8859-2',
  527.     'hu_hu': 'hu_HU.ISO8859-2',
  528.     'hungarian': 'hu_HU.ISO8859-2',
  529.     'icelandic': 'is_IS.ISO8859-1',
  530.     'id': 'id_ID.ISO8859-1',
  531.     'id_id': 'id_ID.ISO8859-1',
  532.     'is': 'is_IS.ISO8859-1',
  533.     'is_is': 'is_IS.ISO8859-1',
  534.     'iso-8859-1': 'en_US.ISO8859-1',
  535.     'iso-8859-15': 'en_US.ISO8859-15',
  536.     'iso8859-1': 'en_US.ISO8859-1',
  537.     'iso8859-15': 'en_US.ISO8859-15',
  538.     'iso_8859_1': 'en_US.ISO8859-1',
  539.     'iso_8859_15': 'en_US.ISO8859-15',
  540.     'it': 'it_IT.ISO8859-1',
  541.     'it_ch': 'it_CH.ISO8859-1',
  542.     'it_it': 'it_IT.ISO8859-1',
  543.     'italian': 'it_IT.ISO8859-1',
  544.     'iw': 'iw_IL.ISO8859-8',
  545.     'iw_il': 'iw_IL.ISO8859-8',
  546.     'ja': 'ja_JP.eucJP',
  547.     'ja.jis': 'ja_JP.JIS7',
  548.     'ja.sjis': 'ja_JP.SJIS',
  549.     'ja_jp': 'ja_JP.eucJP',
  550.     'ja_jp.ajec': 'ja_JP.eucJP',
  551.     'ja_jp.euc': 'ja_JP.eucJP',
  552.     'ja_jp.eucjp': 'ja_JP.eucJP',
  553.     'ja_jp.iso-2022-jp': 'ja_JP.JIS7',
  554.     'ja_jp.jis': 'ja_JP.JIS7',
  555.     'ja_jp.jis7': 'ja_JP.JIS7',
  556.     'ja_jp.mscode': 'ja_JP.SJIS',
  557.     'ja_jp.sjis': 'ja_JP.SJIS',
  558.     'ja_jp.ujis': 'ja_JP.eucJP',
  559.     'japan': 'ja_JP.eucJP',
  560.     'japanese': 'ja_JP.SJIS',
  561.     'japanese-euc': 'ja_JP.eucJP',
  562.     'japanese.euc': 'ja_JP.eucJP',
  563.     'jp_jp': 'ja_JP.eucJP',
  564.     'ko': 'ko_KR.eucKR',
  565.     'ko_kr': 'ko_KR.eucKR',
  566.     'ko_kr.euc': 'ko_KR.eucKR',
  567.     'korean': 'ko_KR.eucKR',
  568.     'lt': 'lt_LT.ISO8859-4',
  569.     'lv': 'lv_LV.ISO8859-4',
  570.     'mk': 'mk_MK.ISO8859-5',
  571.     'mk_mk': 'mk_MK.ISO8859-5',
  572.     'nl': 'nl_NL.ISO8859-1',
  573.     'nl_be': 'nl_BE.ISO8859-1',
  574.     'nl_nl': 'nl_NL.ISO8859-1',
  575.     'no': 'no_NO.ISO8859-1',
  576.     'no_no': 'no_NO.ISO8859-1',
  577.     'norwegian': 'no_NO.ISO8859-1',
  578.     'pl': 'pl_PL.ISO8859-2',
  579.     'pl_pl': 'pl_PL.ISO8859-2',
  580.     'polish': 'pl_PL.ISO8859-2',
  581.     'portuguese': 'pt_PT.ISO8859-1',
  582.     'portuguese_brazil': 'pt_BR.ISO8859-1',
  583.     'posix': 'C',
  584.     'posix-utf2': 'C',
  585.     'pt': 'pt_PT.ISO8859-1',
  586.     'pt_br': 'pt_BR.ISO8859-1',
  587.     'pt_pt': 'pt_PT.ISO8859-1',
  588.     'ro': 'ro_RO.ISO8859-2',
  589.     'ro_ro': 'ro_RO.ISO8859-2',
  590.     'ru': 'ru_RU.ISO8859-5',
  591.     'ru_ru': 'ru_RU.ISO8859-5',
  592.     'rumanian': 'ro_RO.ISO8859-2',
  593.     'russian': 'ru_RU.ISO8859-5',
  594.     'serbocroatian': 'sh_YU.ISO8859-2',
  595.     'sh': 'sh_YU.ISO8859-2',
  596.     'sh_hr': 'sh_HR.ISO8859-2',
  597.     'sh_sp': 'sh_YU.ISO8859-2',
  598.     'sh_yu': 'sh_YU.ISO8859-2',
  599.     'sk': 'sk_SK.ISO8859-2',
  600.     'sk_sk': 'sk_SK.ISO8859-2',
  601.     'sl': 'sl_CS.ISO8859-2',
  602.     'sl_cs': 'sl_CS.ISO8859-2',
  603.     'sl_si': 'sl_SI.ISO8859-2',
  604.     'slovak': 'sk_SK.ISO8859-2',
  605.     'slovene': 'sl_CS.ISO8859-2',
  606.     'sp': 'sp_YU.ISO8859-5',
  607.     'sp_yu': 'sp_YU.ISO8859-5',
  608.     'spanish': 'es_ES.ISO8859-1',
  609.     'spanish_spain': 'es_ES.ISO8859-1',
  610.     'sr_sp': 'sr_SP.ISO8859-2',
  611.     'sv': 'sv_SE.ISO8859-1',
  612.     'sv_se': 'sv_SE.ISO8859-1',
  613.     'swedish': 'sv_SE.ISO8859-1',
  614.     'th_th': 'th_TH.TACTIS',
  615.     'tr': 'tr_TR.ISO8859-9',
  616.     'tr_tr': 'tr_TR.ISO8859-9',
  617.     'turkish': 'tr_TR.ISO8859-9',
  618.     'univ': 'en_US.utf',
  619.     'universal': 'en_US.utf',
  620.     'zh': 'zh_CN.eucCN',
  621.     'zh_cn': 'zh_CN.eucCN',
  622.     'zh_cn.big5': 'zh_TW.eucTW',
  623.     'zh_cn.euc': 'zh_CN.eucCN',
  624.     'zh_tw': 'zh_TW.eucTW',
  625.     'zh_tw.euc': 'zh_TW.eucTW' }
  626. windows_locale = {
  627.     1028: 'zh_TW',
  628.     2052: 'zh_CN',
  629.     1030: 'da_DK',
  630.     1043: 'nl_NL',
  631.     1033: 'en_US',
  632.     2057: 'en_UK',
  633.     3081: 'en_AU',
  634.     4105: 'en_CA',
  635.     5129: 'en_NZ',
  636.     6153: 'en_IE',
  637.     7177: 'en_ZA',
  638.     1035: 'fi_FI',
  639.     1036: 'fr_FR',
  640.     2060: 'fr_BE',
  641.     3084: 'fr_CA',
  642.     4108: 'fr_CH',
  643.     1031: 'de_DE',
  644.     1032: 'el_GR',
  645.     1037: 'iw_IL',
  646.     1039: 'is_IS',
  647.     1040: 'it_IT',
  648.     1041: 'ja_JA',
  649.     1044: 'no_NO',
  650.     2070: 'pt_PT',
  651.     3082: 'es_ES',
  652.     1089: 'sw_KE',
  653.     1053: 'sv_SE',
  654.     2077: 'sv_FI',
  655.     1055: 'tr_TR' }
  656.  
  657. def _print_locale():
  658.     ''' Test function.
  659.     '''
  660.     categories = { }
  661.     
  662.     def _init_categories(categories = categories):
  663.         for k, v in globals().items():
  664.             if k[:3] == 'LC_':
  665.                 categories[k] = v
  666.                 continue
  667.         
  668.  
  669.     _init_categories()
  670.     del categories['LC_ALL']
  671.     print 'Locale defaults as determined by getdefaultlocale():'
  672.     print '-' * 72
  673.     (lang, enc) = getdefaultlocale()
  674.     print 'Language: ',
  675.     if not lang:
  676.         pass
  677.     print '(undefined)'
  678.     print 'Encoding: ',
  679.     if not enc:
  680.         pass
  681.     print '(undefined)'
  682.     print 
  683.     print 'Locale settings on startup:'
  684.     print '-' * 72
  685.     for name, category in categories.items():
  686.         print name, '...'
  687.         (lang, enc) = getlocale(category)
  688.         print '   Language: ',
  689.         if not lang:
  690.             pass
  691.         print '(undefined)'
  692.         print '   Encoding: ',
  693.         if not enc:
  694.             pass
  695.         print '(undefined)'
  696.         print 
  697.     
  698.     print 
  699.     print 'Locale settings after calling resetlocale():'
  700.     print '-' * 72
  701.     resetlocale()
  702.     for name, category in categories.items():
  703.         print name, '...'
  704.         (lang, enc) = getlocale(category)
  705.         print '   Language: ',
  706.         if not lang:
  707.             pass
  708.         print '(undefined)'
  709.         print '   Encoding: ',
  710.         if not enc:
  711.             pass
  712.         print '(undefined)'
  713.         print 
  714.     
  715.     
  716.     try:
  717.         setlocale(LC_ALL, '')
  718.     except:
  719.         print 'NOTE:'
  720.         print 'setlocale(LC_ALL, "") does not support the default locale'
  721.         print 'given in the OS environment variables.'
  722.  
  723.     print 
  724.     print 'Locale settings after calling setlocale(LC_ALL, ""):'
  725.     print '-' * 72
  726.     for name, category in categories.items():
  727.         print name, '...'
  728.         (lang, enc) = getlocale(category)
  729.         print '   Language: ',
  730.         if not lang:
  731.             pass
  732.         print '(undefined)'
  733.         print '   Encoding: ',
  734.         if not enc:
  735.             pass
  736.         print '(undefined)'
  737.         print 
  738.     
  739.  
  740.  
  741. try:
  742.     LC_MESSAGES
  743. except NameError:
  744.     pass
  745.  
  746. __all__.append('LC_MESSAGES')
  747. if __name__ == '__main__':
  748.     print 'Locale aliasing:'
  749.     print 
  750.     _print_locale()
  751.     print 
  752.     print 'Number formatting:'
  753.     print 
  754.     _test()
  755.  
  756.